The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
ChangeLog 04
META.yml 73
Makefile.PL 11
inc/Module/Install/Base.pm 33
lib/MooseX/SimpleConfig.pm 11
5 files changed (This is a version diff) 1212
@@ -1,5 +1,9 @@
 Revision history for Perl extension MooseX::SimpleConfig
 
+0.06 - Apr 12, 2010
+  - Depend on at least version 0.19 of Config::Any for flatten_to_hash
+    support.
+
 0.05 - Jan 22, 2010
    - Allow multiple config files to be loaded and merged.
      Patch in RT#48552 from Sawyer X
@@ -8,7 +8,7 @@ build_requires:
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.91'
+generated_by: 'Module::Install version 0.910'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -18,14 +18,10 @@ no_index:
   directory:
     - inc
     - t
-provides:
-  MooseX::SimpleConfig:
-    file: lib/MooseX/SimpleConfig.pm
-    version: 0.05
 requires:
-  Config::Any: 0.10
+  Config::Any: 0.13
   Moose: 0.35
   MooseX::ConfigFromFile: 0.02
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.05
+version: 0.06
@@ -8,7 +8,7 @@ test_requires 'Test::More' => '0.42';
 
 requires 'Moose'                      => '0.35';
 requires 'MooseX::ConfigFromFile'     => '0.02';
-requires 'Config::Any'                => '0.10';
+requires 'Config::Any'                => '0.13';
 
 # Rebuild README for maintainers
 system("pod2text lib/MooseX/SimpleConfig.pm >README") and die
@@ -9,8 +9,8 @@ BEGIN {
 
 # Suspend handler for "redefined" warnings
 BEGIN {
-	my $w = $SIG{__WARN__};
-	$SIG{__WARN__} = sub { $w };
+#	my $w = $SIG{__WARN__};
+#	$SIG{__WARN__} = sub { $w };
 }
 
 #line 42
@@ -70,7 +70,7 @@ sub DESTROY {}
 
 # Restore warning handler
 BEGIN {
-	$SIG{__WARN__} = $SIG{__WARN__}->();
+#	$SIG{__WARN__} = $SIG{__WARN__}->();
 }
 
 1;
@@ -3,7 +3,7 @@ package MooseX::SimpleConfig;
 use Moose::Role;
 with 'MooseX::ConfigFromFile';
 
-our $VERSION   = '0.05';
+our $VERSION   = '0.06';
 
 use Config::Any ();